DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1CursorDataCollection<T> Class / InsertAsyncOverride Method
The index where the item is inserted.
The item inserted.
The cancellation token.

In This Topic
    InsertAsyncOverride Method (C1CursorDataCollection<T>)
    In This Topic
    This method is called when an item is inserted in the collection.
    Syntax
    'Declaration
     
    Protected Overridable Function InsertAsyncOverride( _
       ByVal index As Integer, _
       ByVal item As T, _
       ByVal cancellationToken As CancellationToken _
    ) As Task(Of Integer)
    protected virtual Task<int> InsertAsyncOverride( 
       int index,
       T item,
       CancellationToken cancellationToken
    )

    Parameters

    index
    The index where the item is inserted.
    item
    The item inserted.
    cancellationToken
    The cancellation token.
    Remarks
    C1CursorDataCollection<T,K>.CanInsert must return true to enable this method.
    See Also